home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / HTAlert.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  1KB  |  53 lines

  1. /*  */
  2.  
  3. /*      Displaying messages and getting input for WWW Library
  4. **      =====================================================
  5. **
  6. **         May 92 Created By C.T. Barker
  7. **         Feb 93 Portablized etc TBL
  8. */
  9.  
  10. #include "HTUtils.h"
  11. #include "tcp.h"
  12.  
  13. /*      Display a message and get the input
  14. **
  15. **      On entry,
  16. **              Msg is the message.
  17. **
  18. **      On exit,
  19. **              Return value is malloc'd string which must be freed.
  20. */
  21. extern char * HTPrompt PARAMS((CONST char * Msg, CONST char * deflt));
  22.  
  23.  
  24. /*      Display a message, don't wait for input
  25. **
  26. **      On entry,
  27. **              The input is a list of parameters for printf.
  28. */
  29. extern void HTAlert PARAMS((CONST char * Msg));
  30.  
  31.  
  32. /*      Display a progress message for information (and diagnostics) only
  33. **
  34. **      On entry,
  35. **              The input is a list of parameters for printf.
  36. */
  37. extern void HTProgress PARAMS((CONST char * Msg));
  38.  
  39.  
  40. /*      Display a message, then wait for 'yes' or 'no'.
  41. **
  42. **      On entry,
  43. **              Takes a list of parameters for printf.
  44. **
  45. **      On exit,
  46. **              If the user enters 'YES', returns TRUE, returns FALSE
  47. **              otherwise.
  48. */
  49. extern BOOL HTConfirm PARAMS ((CONST char * Msg));
  50. /*
  51.  
  52.     */
  53.